home *** CD-ROM | disk | FTP | other *** search
- #! /bin/sh -e
-
- case "$1" in
- remove)
- if [ "$DEBIAN_FRONTEND" != noninteractive ]; then
- echo "Unlinking and removing bytecode for runtime python2.4"
- fi
- for hook in /usr/share/python/runtime.d/*.rtremove; do
- [ -x $hook ] || continue
- $hook rtremove python2.4
- done
- dpkg -L python2.4-minimal \
- | awk '/\.py$/ {print $0"c\n" $0"o"}' \
- | xargs rm -f >&2
- ;;
- upgrade)
- dpkg -L python2.4-minimal \
- | awk '/\.py$/ {print $0"c\n" $0"o"}' \
- | xargs rm -f >&2
- ;;
- deconfigure)
- ;;
- failed-upgrade)
- ;;
- *)
- echo "prerm called with unknown argument \`$1'" >&2
- exit 1
- ;;
- esac
-
- rmdir /usr/local/lib/python2.4/site-packages 2>/dev/null && \
- rmdir /usr/local/lib/python2.4 2>/dev/null || \
- true
-
-
-